home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dbg / ds3100.md / dbgInt.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  853b  |  27 lines

  1. /*
  2.  * dbgInt.h --
  3.  *
  4.  *         Internal types, constants,  and procedure headers for the debugger
  5.  *    module.
  6.  *
  7.  *    Copyright (C) 1989 Digital Equipment Corporation.
  8.  *    Permission to use, copy, modify, and distribute this software and
  9.  *    its documentation for any purpose and without fee is hereby granted,
  10.  *    provided that the above copyright notice appears in all copies.
  11.  *    Digital Equipment Corporation makes no representations about the
  12.  *    suitability of this software for any purpose.  It is provided "as is"
  13.  *    without express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dbg/ds3100.md/dbgInt.h,v 9.1 90/09/24 17:14:18 kupfer Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DBGINT
  19. #define _DBGINT
  20.  
  21. extern    int    dbgTraceLevel;         /* Our trace level. */
  22.  
  23. extern unsigned int *
  24.         DbgGetDestPC _ARGS_((Address instPC));
  25.  
  26. #endif /* _DBGINT */
  27.